Hi XYZ,
Thanks for your interest in Syncfusion
products.
Query #1: Drag columns to reorder; make the
order sticky.
Your requirement to reorder can be achieved
by setting the AllowDragAndDrop
property to True.
Query #2: Resize columns, make width sticky.
Your requirement to resize the columns can be
achieved by setting the AllowResizing
property to True.
Query #3: Change sorting by clicking column
heading, make that sticky.
Your requirement to enable sorting by
clicking on column header can be achieved by giving the EnableSorting property.
In all the three queries you have specified
for Sticky. We have understood Sticky as Frozen Rows and Columns and we have
created a sample that includes all the above three queries. Please refer the
below code snippet:
[CSHTML]
@(Html.Syncfusion().Grid<Sticky1.Models.Order>("StickyNote")
.Datasource(Model)
.EnablePaging()
.EnableSorting()
.EnableScrolling()
.AllowResizing(true)
.FrozenColumns(2)
.AutoFormat(Skins.Blueberry)
.FrozenRows(3)
.AllowDragAndDrop(true)
.Column(col=>
{
col.Add(p
=> p.OrderID).HeaderText("Order ID");
col.Add(p
=> p.CustomerID).HeaderText("Customer ID");
col.Add(p
=> p.ShipAddress).HeaderText("Address");
})
.Scrolling(scroll=>scroll.Height(250))
)
If we have misunderstood your requirement
please try this sample and get back to us with more information, so that we can
analyze that and provide the better solution.
Let us know if you have queries.
Regards,
Abdul Matin M
Hi Ling Lin,
Thanks for your interest in Syncfusion products.
Query-1-Column Reordering, Grouping, Filtering, Sorting and Hover Text should be Sticky
We suggest you to achieve this requirement you just follow up the incident- 110233.
Query-2 Sorting and Filtering in OnDemandPaging
We suggest you to use our Online Sample and Online Documentation for EnableOnDemand. Please visit the below links.
Online Sample- http://mvc.syncfusion.com/demos/ui/grid/DataBinding/CustomBinding
Online documentation- http://help.syncfusion.com/ug/asp.net%20mvc/grid/default.htm#!documents/custombinding.htm
Query-3 Grouping in OnDemandPaging
We suspect that your reported issue as defect. So we suggest you to create a new incident using direct- trac account since we do not provide confidential information like patch in Forum.
Please let us know if you have any Other Concerns.
Regards,
Satheeskumar S