iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
WebGrid1.GetSelectedObject().GetRowObject().GetCells().GetNamedItem("Gender").GetElement().attributes["ID"].value;WebGrid1.GetSelectedObject().GetRowObject().GetCells().GetNamedItem("Address").GetElement().attributes["Name"].value;
This solution will resolve the “Update Wrong Column” issue and “Misaligned” issue as well.
Please have review on my sample to see how it works.
Thank you.
Regards,
Hans.
Hello,I try to make changes (update) the WebGrid in my sample.However, its works fine on my end.Could you please help me to modify my sample, so that I can reproduce your issue on my end?Thank you.Regards,Hans.
Hello,To deselect a row from client side, you could use this example snippet code:
function ClearSelectedObj() { var grid = ISGetObject('WebGrid1'); grid.ClearSelectedObject(true); return true; }
Regards,Hans.
function WebGrid1_OnAfterInitialize(controlId) { var WebGrid1 = ISGetObject(controlId); WebGrid1.RootTable.Columns[2].Width = 25; WebGrid1.RootTable.Columns[2].Resize(25); return true; }
This solution works for me.Thank you.Regards,Hans.
Hello,Thank you for your sample.Now, I can reproduce your issue on my end as well.It seems this issue appears due to the WebGrid still counting the width of invisible columns.I will forward this issue to our developer team and I’ll let you know if there are any updates for this issue.Meanwhile, to resolve this issue you could try to remove the invisible column from your WebGrid’s structure.
Or you could use HTML4 doctype on your page.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
I am sorry for the inconvenience and thank you for your understanding.Regards,Hans.
function ChangeText() { var paneManager = ISGetObject("WebPaneManager1"); var pane = paneManager.GetPaneByName("Content"); pane.SetText("My New Content From Client Side"); }
But if want to the header text from server side, you could use this example snippet code:
WebPaneManager1.GetAllPanes().GetNamedItem("Content").Text = "My New Content From Server Side";
Please have review on my sample and let me know your response.Hope this helps.Regards,Hans.
I’m sorry for the late response.You could save the WebGrid’s structure to XML file, use this snippet code:
WebGrid1.SaveTablesStructureToXml(Server.MapPath("WebGridTableStructure.xml"));
Then you could load the structure from XML file, use this snippet code:
WebGrid1.LoadTablesStructureFromXml(Server.MapPath("WebGridTableStructure.xml")); WebGrid1.RebindDataSource();
Please have review on my sample as well and let me know your response.Hope this helps. Thank you.Regards,Hans.
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname