You still have not canceled my subscription or refunded me my money for this month. I canceled more than 6 times now, starting in the last month. You support still tells my have to wait, I want a solution now!
@SyncfusionIncКүн бұрын
Hello, We apologize for the delay in processing your refund request. We escalated your concerns to our accounting team and they emailed you to follow up. Please don't hesitate to reach out again.
@matypluss2 күн бұрын
VLC
@Nivveditaa2 күн бұрын
Keep it up 👍🏻✨
@andrespineiroc2 күн бұрын
Anyway to do this with decimals? "half stars" for example?
@Malayalam_learner3 күн бұрын
What is use of A21 cell adress here? You didn't even touch it
@Malayalam_learner3 күн бұрын
What is absolute cell reference?
@JorgeFerreira-cd9dr4 күн бұрын
Life saver!!
@fpcastanheira86796 күн бұрын
Is there support for itf interleaved 2 of 5?
@SyncfusionInc4 күн бұрын
Hello, Currently, we do not support "ITF interleaved 2 of 5." We have already logged this as a feature request and added it to our feature queue. We will implement this feature in one of our upcoming releases. Meanwhile, you can track the status of the feature using the below link. www.syncfusion.com/feedback/64376/support-for-interleaved-2-of-5-itf-type-barcode
@ymtan8 күн бұрын
I would like to seek clarification regarding the [FromBody] attribute that was decorated on the method parameter CRUDModel<Order> Value of Insert method , Update method and Delete method within the GridController class. I would like to verify is it compulsory or necessary for us to decorate the method parameter CRUDModel <Order> Value with [FromBody] attribute since the GridController class was decorated with [ApiController] attribute ???
@SyncfusionInc4 күн бұрын
Hello, We want to inform you that it is not necessary to explicitly specify the [FromBody] attribute on the method parameter if the GridController class is already decorated with the [ApiController] attribute. We will modify our documentation and video tutorials, and this will be reflected in any upcoming release.
@anjubajantri1510 күн бұрын
Thanku 😘💕❤️
@mahdimdh445910 күн бұрын
amazing thank you so much :)
@zioncitizen203010 күн бұрын
Happy Christmas folks! 🎄
@JohanVisser-sq1ng16 күн бұрын
Why not show HOW to do those things. I have given up to make anything work in Blazor
@SyncfusionInc8 күн бұрын
Hi, Thanks for reaching out! To get a detailed understanding of how to implement the features of the Blazor DataGrid component in your Blazor projects, we recommend checking out the following resources: Blazor DataGrid: www.syncfusion.com/tutorial-videos/blazor/data-grid KZbin Playlist: kzbin.info/aero/PLDzXQPWT8wEDqWQt9m6Lv8DnJcEwO2xe1 We regularly update this playlist with new topics. If you're looking for specific topics, please let us know, and we'll be happy to assist you.
@wasifsalim117316 күн бұрын
does'nt work
@ymtan17 күн бұрын
I am not familiar with semantic filtering using embeddings. I would like to enquiry what is embeddings and embedding vector ??? For the following piece of codes could you kindly please elucidate or demystify the following line of codes because I failed to understand what actually the following line of codes are doing ? categoryEmbeddings[category.ID] = await Task.Run(() => Embedder.Embed(category.Name)); var queryVector = await Task.Run(() => Embedder.Embed(searchTerm)); filteredCategories = await Task.Run( () => allCategories.Where(category => LocalEmbedder.Similarity(categoryEmbeddings[category.ID], queryVector) > similarityThreshold).ToList());
@SyncfusionInc11 күн бұрын
Hi, Embeddings and Embedding Vectors: In the context of machine learning and natural language processing (NLP), an embedding is a numerical representation of a piece of text (like a word, phrase, or sentence) in a high-dimensional space. These numerical representations are called embedding vectors. They capture the semantic meaning of the text. For example: The words "apple" and "orange" would have numbers that are closer together because they are both fruits. The word "car" would have a different number because it has a different meaning. For more details, please check the documentation below. learn.microsoft.com/en-us/dotnet/ai/conceptual/embeddings Code Explanation: categoryEmbeddings[category.ID] = await Task.Run(() => Embedder.Embed(category.Name)); Each category name (like "Groceries") is turned into a "embedding vectors" (embedding) that represents its meaning. These vectors are saved in a dictionary (categoryEmbeddings) so they can be used later. var queryVector = await Task.Run(() => Embedder.Embed(searchTerm)); The user’s search input (e.g., "food") is also turned into a "embedding vectors" (embedding). This helps us compare the search with the categories. filteredCategories = await Task.Run(() => allCategories.Where(category => LocalEmbedder.Similarity(categoryEmbeddings[category.ID], queryVector) > similarityThreshold).ToList()); This compares the user’s search "embedding vector" with each category’s "embedding vectors" The category is included in the results if they are similar enough (based on a threshold)s.
@MuhammadDANYAL-dg2dg18 күн бұрын
eBay kysa plate form hai ??
@SriMinOo19 күн бұрын
Thanks
@juanluispujol593119 күн бұрын
When this function finds any repeated value, it does not work. Look at 6 ranking...7 and 8 are missing and next ranking is 9. Look at 10 ranking...11 and 12 are missing and next ranking is 13
@Dening_den094 күн бұрын
@@juanluispujol5931 press f4 after the range to get the dollar sign
@Mmmm-ud6io19 күн бұрын
Thank you i was struggling with callbacks for 2-3 day❤
@tamerelshebokshy19 күн бұрын
thanks
@orhancanoguz442320 күн бұрын
Great Thanks...
@acgylk43221 күн бұрын
lastpass is now considered as a virus
@ymtan21 күн бұрын
Hi, regarding the GetOrdersAsync () method I think you don't have to explicitly open and close the database connection since you are calling the Fill method of the SqlDataAdapter class which is going to automatically open the connection, execute the query string, load the data into the dataset and close the connection immediately for us. In addition, the SqlConnection object is being wrapped by the using statement so database connection will be closed automatically.
@SyncfusionInc19 күн бұрын
Hello, Thank you for sharing your valuable feedback and for providing an approach to optimize the code in our samples. We have reviewed your suggestion and confirmed that the Fill method of the SqlDataAdapter class internally manages the database connection, eliminating the need for explicit Open and Close statements. As the approach works fine and reduces redundant code, we have planned to implement these changes in our samples, documentation, and video demos. We have logged an internal bug task in our user guide (UG) documentation. The correction will be included in one of our upcoming patch releases. We greatly appreciate your contribution to improving our documentation and ensuring a cleaner, more efficient codebase.
@sardarabdalla23 күн бұрын
what about pagination and sorting and filtering with server side with ef core ? not in-memory
@SyncfusionInc19 күн бұрын
Hi, Based on your query, we would like to clarify that you need to implement paging, sorting, and filtering when using a custom adaptor. We recommend using the PerformSkip and PerformTake methods for paging, the PerformFiltering method for filtering, and the PerformSorting method for sorting. We already have documentation on these topics. Kindly refer to the documentation below for your reference. blazor.syncfusion.com/documentation/datagrid/connecting-to-database/entityframework#handling-paging-operation-1 blazor.syncfusion.com/documentation/datagrid/connecting-to-database/entityframework#handling-filtering-operation-1 blazor.syncfusion.com/documentation/datagrid/connecting-to-database/entityframework#handling-sorting-operation-1
@sardarabdalla19 күн бұрын
@@SyncfusionInc all of them are In-memory pagination ,filtering..etc . you get all order from database like this IEnumerable<Order> DataSource = await OrderService.GetOrdersAsync(); then you do pagination and filtering... which is wrong!! imagine i have million records! i have read all syncfuion blazor documents i couldn’t find any example of real server side pagination and filtering..etc. for entity framework. all of your example is in memory.
@SyncfusionInc16 күн бұрын
@@sardarabdalla The custom adaptor interacts with the DataManagerRequest, which encapsulates details about the operations requested by the grid. For example, it contains properties like Where (filter conditions), Sorted (sorting information ), Skip (records to skip for paging), and Take (records to fetch for paging). These values can be accessed and used in the custom adaptor to handle operations manually. Kindly refer to the below code snippet for your reference. Thanks for your understanding. So, we would like to clarify that we have handled grid-side data operations using the PerformSorting, PerformFiltering, PerformSkip, and PerformTake methods. These methods are designed to handle operations on the grid-side effectively. However, if these methods are not necessary for your use case and , you can manage the required actions externally on your own and return the resultant data to bind it to the Grid. The SfDataManager in DataGrid provides support for a custom adaptor enabling manual control over data operations. A custom adaptor is particularly useful when you need fine-grained control over how data is managed, sorted, filtered, paginated, or processed. public class CustomAdaptor : DataAdaptor { public override object Read(DataManagerRequest dm, string key = null) { // Log or inspect the DataManagerRequest values Console.WriteLine($"Filters: {dm.Where}"); Console.WriteLine($"Sort Order: {dm.Sorted}"); Console.WriteLine($"Page Size: {dm.Take}"); // Perform your own custom data retrieval logic here // Apply sorting, filtering, paging, etc., if needed if (dm.Sorted != null) { // Perform sorting logic } if (dm.Where != null) { // Perform filtering logic } int count = DataSource.Cast<Order>().Count(); //Here Implement pagination logic here based on request.Skip and request.Take if (dm.Skip != 0) { //Paging } if (dm.Take != 0) { } // Return data with total record count for paging return new DataResult() { Result = data, Count = data.Count() }; } } Reference blazor.syncfusion.com/documentation/datagrid/custom-binding#data-binding Additionally, we suggest performing server-side data operations. We have already documented this topic. Refer to the documentation below for more information blazor.syncfusion.com/documentation/datagrid/data-binding#entity-framework
@neolopus23 күн бұрын
Not what a was looking for, but i'm still glad that i ended up here
@harsh.on.strings24 күн бұрын
"Thank you so much for providing this data grid with the best features. Could you please tell me how to persist row selection across different pages in the data grid? I am selecting some rows, then changing the page using SfDataPager. When I go back to the previous page, the selected rows disappear and the checkboxes become unchecked. I have stored the selected rows in a list on the backend, but the checkboxes are not reflecting the selection."
@SyncfusionInc22 күн бұрын
Hi, In SfDataGrid, rows are rebuilt for each page during navigation. Due to this, it is not possible to directly manage the selection of all rows across pages. However, there is a workaround to meet your requirements. You need to maintain a separate collection for the selected rows. This collection should be used to initialize controller.selectedRows (pub.dev/documentation/syncfusion_flutter_datagrid/latest/datagrid/DataGridController/selectedRows.html) whenever page navigation occurs. Additionally, in the onSelectionChanging (pub.dev/documentation/syncfusion_flutter_datagrid/latest/datagrid/SfDataGrid/onSelectionChanging.html) callback, you should update this collection by adding or removing rows based on their selection state. To retrieve all selected rows, you can reference the selectedRows collection maintained in the DataGridSource. There are some limitations when enabling checkboxes: Selecting all rows using checkboxes will only select the rows visible on the current page. Since checkboxes are handled in the source, selecting all rows across multiple pages using checkboxes is not supported when paging is enabled.
@harsh.on.strings22 күн бұрын
@SyncfusionInc Thank You So Much for the clarification 😊
@jaedong195724 күн бұрын
Hi! when I save image after editing, it prompts me to pickup location on my phone for edited image first. how I can make it so it just saves and overwrites the image, like it's shown in this video?
@SyncfusionInc23 күн бұрын
Hi, To prevent the save picker from appearing when saving the image, you can cancel it by setting `e.Cancel = true` in the `SavePickerOpening` event. Please refer to our user guide documentation (help.syncfusion.com/maui/imageeditor/save?cs-save-lang=1&cs-lang=csharp#save-picker-opening-event) for more information on this event. If the save picker is disabled, the image will be saved to the default location. To save the image to a specific location, you can use the `ImageSaving` event, as outlined in our knowledge base article (support.syncfusion.com/kb/article/13153/how-to-change-the-image-saving-location-in-the-net-maui-image-editor-sfimageeditor).
@AthelstanEngland25 күн бұрын
Looks great 👍
@SyncfusionInc17 күн бұрын
Thank you! We're glad you liked it!
@PerfectfitStores25 күн бұрын
Thank you for making this short, precise and sweet. How can I colour code the selection eg yes is green, no is red
@Dening_den0926 күн бұрын
Who did do the dollar signs
@abdullahqureshi63626 күн бұрын
How to select entire row or column containing highlighted cells? Just select not delete as I've to cut g paste it somewhere else, If anyone has idea kindly do share it
@HassanAfshar-kv6ts27 күн бұрын
Goood
@fouzia884429 күн бұрын
How to do this in old excel version
@facehead01060Ай бұрын
It is as for link name... just nothing if we put directly the link given on sheet already...we can go there directly
@anamikaomi5035Ай бұрын
It doesn’t work
@SnowDen-n8nАй бұрын
how can someone create a dynamic document using syncfusion ??????????
@SyncfusionIncАй бұрын
Hi, To create a dynamic Word document using DocIO in an ASP.NET Core application, you can utilize the mail merge functionality of the Syncfusion Word(DocIO) library. This feature allows you to design templates in Microsoft Word and populate them with data from various sources such as business objects, ADO.NET objects, arrays, XML, dynamic objects, and relational objects. This approach is efficient for generating personalized documents or reports. You can include simple text, numeric data, and images from your data sources into the Word documents using mail merge. For more details about the mail merge functionality, please refer to the following resources: help.syncfusion.com/document-processing/word/word-library/net/working-with-mail-merge github.com/SyncfusionExamples/DocIO-Examples/tree/main/Mail-Merge www.syncfusion.com/blogs/post/mail-merge-word-csharp-ultimate-guide kzbin.info/www/bejne/fGK5p5aGdtmfqKMsi=vAvkD7REsLDQv4Iu
@SnowDen-n8nАй бұрын
for this purpose which license key we have to activate ??
@SyncfusionIncАй бұрын
Hi, If you are an Essential Studio license holder, you can generate the Essential Studio license key that can be used for all Syncfusion products. The ES license key can be generated by selecting the "Select all" option during the key generation or you can generate the license key by selecting the “File Formats” since you are trying to use IO packages. These Syncfusion license keys are major version and product-specific and the generated license key is just a string that needs to be registered before any Syncfusion control is initiated.Please generate and register the corresponding version and product license key in your projects to prevent trial license warnings. If you use Syncfusion assemblies from NuGet packages(nuget.org), or if you're upgrading the nuget packages from one major version to another, such as from v26.* to v27.* you should generate and register the corresponding version and product license key in your projects to prevent trial license warnings. Refer to the below KB article to know which version license key should use in the application, support.syncfusion.com/kb/article/7865/which-version-syncfusion-license-key-should-i-use-in-my-application Refer to this link for generating license key, help.syncfusion.com/common/essential-studio/licensing/how-to-generate Refer to this link for registering license key, help.syncfusion.com/common/essential-studio/licensing/how-to-register-in-an-application
If three people got rank 6 then you can't expect 7 and 8 the next follow up rank is 9 only
@abdoha6227Ай бұрын
How adding scaffolding Identity to project
@cmpunk9738Ай бұрын
This library is free? somebody know?
@SyncfusionIncАй бұрын
Hello @cmpunk9738, Our paid and free versions both have the same features and support. You can check here to see if you qualify for our Community (free) license. It's available for companies with 5 or fewer developers and less than $1 Mil USD in annual revenue. bit.ly/395t17c
@AthelstanEnglandАй бұрын
Looks good. Is it just the one Nuget package needed or is there a core or licence psckage too. Using VS2022 Community Edition with .net 8. Thanks
@SyncfusionIncАй бұрын
Hi, We would like to inform you that "Syncfusion.Blazor.Navigations" NuGet package will help add a Blazor Sidebar component in the application. Additionally, to apply styling to the component, it is essential to install the "Syncfusion.Blazor.Themes" package along with the navigation package. We have shared the Blazor Sidebar Getting Started user guide documentation for your additional reference: blazor.syncfusion.com/documentation/sidebar/getting-started-webapp
@SnowDen-n8nАй бұрын
what is that webrootpath + //image ??? .... its is showing error in my system
@SyncfusionIncАй бұрын
Hi, We need to make use of the IWebHostEnvironment to resolve the WebRootPath. Below is how you can implement it: 1. Inject the IWebHostEnvironment into your Razor page: Add the following line to your index.razor (or relevant Razor page): @inject Microsoft.AspNetCore.Hosting.IWebHostEnvironment hostingEnvironment 2. Declare the parameter in your class: In the main class where you are handling file operations, include the following declaration: private readonly IWebHostEnvironment _hostingEnvironment; 3. Iterate or access files from the wwwroot folder: Use the WebRootPath as follows to access the image: FileStream imageStream = new FileStream(_hostingEnvironment.WebRootPath + "//images//pdf//icon.png", FileMode.Open, FileAccess.Read); 4. Sample Code Reference: We have attached a runnable sample for your reference. You can find it in the following GitHub repository: www.syncfusion.com/demos If you are still facing an issue, please share a modified sample or detailed error information with us. This will help us provide a more precise solution to your query.
@albertwilliams5363Ай бұрын
I'm using a licensed version of Syncfusion Document Editor 26.2.8. I'm aware Document Editor does not allow pdf file to load. But, Is that possible to select a pdf file but intercept the "open" method and convert it to word .docx format(using any Syncfusion pdf conversion Libraries) and then pass the converted .docx document to Document Editor to load?
@SyncfusionIncАй бұрын
Hi, We cannot directly change the PDF into a Word document. We have already logged the feature request with “PDF to Word conversion“ and we will implement this support in any of our upcoming releases. Please use the below feedback link to track the status of this feature. www.syncfusion.com/feedback/14190/pdf-to-word-conversion However, we can achieve this by converting the PDF page into an image and then inserting the image into the Word file. Please find our documentation and sample below Documentation: support.syncfusion.com/kb/article/7243/how-to-convert-pdf-to-word-document-in-winforms-pdf-library?highlight=pdf%20to%20word Sample: www.syncfusion.com/downloads/support/directtrac/general/ze/PDFtoWord_Conversion_BlazorWebApp-1177453165 Please try the above solution and let us know the result. Kindly get back to us if you need any further assistance.
@madraven37Ай бұрын
Nice! I hope there is free. Although I sign up for the community, it's still good to have a free for all.
@Dailyquranepak-v1vАй бұрын
👍
@nofryshy6463Ай бұрын
This formula doesn't work in my laptop. So, what should for the trouble? Anyone can help me?
@mokshvedАй бұрын
Thanks bro my 10k entry data solve in single click
@sarikapagar898Ай бұрын
Is this free to use ?
@SyncfusionIncАй бұрын
Hello @sarikapagar898, Our paid and free versions both have the same features and support. You can check here to see if you qualify for our Community (free) license. It's available for companies with 5 or fewer developers and less than $1 Mil USD in annual revenue. bit.ly/395t17c