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
Hi Michael,
The component should be registered autmatically to your toolbox, but if not you need to browse it manually to installation folder.
Best Regards,
Gordon Tumewu
Hi Yaniv,
Actually if you click on your name at one of the post(I attach screenshot of the name), you can see all the threads that you created and all your post.
Hi Koby,
Please for the next time no need to use th "!" mark, I can read it perfectly without any "!" mark.
Before I gave you the solution I have tested it by creating a simple sample. Here I attached my simple sample that I used to test, please check it and let me know if you have different scenario than my sample.
Hi Gordon ,is this solution Works With Nested Grid
Hi Gordon ,
is this solution Works With Nested Grid
For hierarchical grid you need to use this code:
function HideHierarchicalColumn(pos) { var grid = ISGetObject("WebGrid1"); var table = grid.GetRootTable(); headerGroup = table.GetElement(WG40.COLHEADER, WG40.HTMLDIV); colGroup = table.GetElement(WG40.COLGROUP, WG40.HTMLDIV); headerGroup.childNodes[0].childNodes[0].childNodes[0].childNodes[pos].style.display = (headerGroup.childNodes[0].childNodes[0].childNodes[0].childNodes[pos].style.display == 'none') ? '' : 'none'; colGroup.childNodes[pos].style.display = (colGroup.childNodes[pos].style.display == 'none') ? '' : 'none'; if (!IS.ie) { rowList = colGroup.nextSibling.childNodes; for (var i = 0; i < rowList.length; i++) { if (rowList[i].childNodes[pos]) { rowList[i].childNodes[pos].style.display = rowList[i].childNodes[pos].style.display == 'none' ? '' : 'none'; } } } }
Hi Vince,
After discussing with my colleague, he help me with additional code so this will works in all browser. This is the complete code:
function HideColumn(pos) { var grid = ISGetObject("WebGrid1"); var table = grid.GetRootTable(); headerGroup = table.GetElement(WG40.COLHEADER, WG40.HTMLDIV); colGroup = table.GetElement(WG40.COLGROUP, WG40.HTMLDIV); headerGroup.childNodes[0].childNodes[0].childNodes[0].childNodes[pos].style.display = (headerGroup.childNodes[0].childNodes[0].childNodes[0].childNodes[pos].style.display == 'none') ? '' : 'none'; colGroup.childNodes[pos].style.display = (colGroup.childNodes[pos].style.display == 'none') ? '' : 'none'; if (!IS.ie) { rowList = colGroup.nextSibling.childNodes; for (var i = 0; i < rowList.length; i++) { rowList[i].childNodes[pos].style.display = rowList[i].childNodes[pos].style.display == 'none' ? '' : 'none'; } } }
Actually you only need the WebGrid1.RootTable.COlumns[4].Visible = false. But you need to put it in PrepareDataBinding event not in InitializeLayout.
Hope this helps.
Hi George,
It's true, I noticed that your issue is in inserting, the issue that you have because that the ID column cannot be null, that's why I point to the knowledge base, if you check the knowledge base contain step by step to handle the inserting problem if the ID cannot be null. I think it's similliar with your issue.
Hi,
It's located in your MyComponents window at TDN. You can download one of the component(e.g WebGrid) then you can have the 2009 R1 SP1 installer. Or you can request a trial at http://www.intersoftpt.com/requesttrial.aspx by filling your Intersoft ID and password.
Actually we have a knowledge base about retrieving identity, probably you can use it also, you can browse it in http://support.intersoftpt.com/KBArticle.aspx?aid=207 or http://support.intersoftpt.com/KBArticle.aspx?aid=227.
Could you give me the page HTML structure(the aspx file) so I can check in my end?
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