User Profile & Activity

Julia Wijaya Support
Page
of 24

Hi Francois,

 

Glad to hear your problem solved . Since the problem's condition happened to be unpredictable, your solution will become a precious information for all of us. Thank you very much for sharing it with us. And please let us know if you need another help.

 

Best Regards,

Julia

Hi Francois,

 

You can browse the following thread for the same issue as yours. I hope this can solve your problem.

 

Best Regards,

Julia

Posted: January 3, 2010 11:25 PM

Hi Madhavan,

 

I have created a sample based on your scenario. I set the AutoFitColumn to false and it works fine without hang. Here I attached my sample. Please let me know if your scenario is different. Also, if possible, could you send me a working sample that replicate your issue, it will help me to investigate your issue further. Thanks.

 

Regards,

Julia

Posted: January 3, 2010 11:08 PM

Hi Guillermo,

 

Unfortunately you can't use WebGrid with .net validator. That's why we don't have any sample about the scenario.

 

Regards,

Julia

Posted: December 29, 2009 10:36 PM

Hi Jocelyn,

 

To make certain rows readonly, you can use ForceNoEdit. Below is the simple sample:

- in Server-side :

protected void WebGrid1_InitializeRow(object sender, ISNet.WebUI.WebGrid.RowEventArgs e)
{
  e.Row.Cells.GetNamedItem("Address").ForceNoEdit = true;
}

 - in Client-side

function Button1_onclick()
{
  var WebGrid1 = ISGetObject("WebGrid1");
  var selObj = WebGrid1.GetSelectedObject();
  var cel = selObj.ToRowObject().GetCells();
  cel[1].SetForceNoEdit(true);
  return true;
}

And we have a great sample you can use as reference for updating row. Please see in WebGridSample with the title Client_ProgrammaticEdit.aspx. I hope this can help. Please let me know if you need another help.

 

Best Regards,

Julia

Posted: December 27, 2009 11:54 PM

Hi George,

 

Unfortunately, we don't have API to hide the tab. RIght now, we can disable/enable the WebTab or close the tab.

 

Code snippet for Closing the tab:

function Button1_onclick() {
            var webTab = ISGetObject("WebTab1");
            var webTabItem = webTab.TabPages.GetNamedItem("Tab1");
            webTabItem.Close();
        }

 

Code snippet for enable/disable the tab:

        function Button2_onclick() {
            var webTab = ISGetObject("WebTab1");
            var webTabItem = webTab.TabPages.GetNamedItem("Tab2");            
            webTabItem.Disable();
        }        

        function Button3_onclick() {
            var webTab = ISGetObject("WebTab1");
            var webTabItem = webTab.TabPages.GetNamedItem("Tab2");
            webTabItem.Enable(true);
        }

If you need the API, you can post it as feature request in Developer Network>Community Center>Product Feedback.

 

Regards,

 

Julia

Posted: December 23, 2009 10:28 PM

Hi Conrad,

 

Its true that you can copy and paste back the row. Here I attach a video to show the detail ways for you. I hope this help.

 

Regards,

 

Julia

Posted: December 23, 2009 10:00 PM

Hi Ca,

 

Unfortunately right now we have not support to export Pivot Charting. But you can do request this feature to Developer Network>Community Center>Product Support>Feature Request. Thank you.

 

Regards,

 

Julia

Hi Jeff,

 

According to the WebGrid's build that you use, the problem may occur because you have not install our latest hotfix. I tried your scenario using WebGrid 6 build 6.0.7200.218 and it works fine. You can install our latest hotfix by using Update Manager.

I hope this can help. Please let me know if you need another help.

 

Regards,

 

Julia

Posted: December 21, 2009 2:18 AM

Hi Tenika,

 

Could you check the version of ISNet.WebUI.WebGrid.Editor in your Project's Bin and c://Windows/Assembly? Is both of the dll is using the same version? if it is different, please delete the old one in c://Windows/Assembly and replace it with the one c:\Program Files\Intersoft Solutions\WebUI Studio  for ASP.NET\WebGrid.NET7.0\Bin (Don't forget to delete first, then drag and drop).

 

Hope this help.

 

Regards,

 

Julia

All times are GMT -5. The time now is 8:54 AM.
Previous Next