User Profile & Activity

Riendy Setiadi Member
riendy@intersoftpt.com
Page
of 19

Hi Adam,

Have you enable the scripting ? I suggest you to use IE9 and enable the scripting. To enable the script in IE9, please select Tools on menu bar, then select Internet option. Take a look at Advanced tab, and uncheck "Disable script debugging (Internet Explorer)" and "Disable script debugging (Other)".

Please let me know after these steps implemented.


Thank you.
Riendy

Posted: July 5, 2011 11:13 PM

Hi Nicolas,

This is not an issue in WebGrid's language property. This problem appear because we have missing several culture. If the language's xml which you use is not in localization folder (or the xml is empty), you have to fill it manually. For the details of steps, please follow the steps that yudi gave above.

NOTE: your project must a local host WebSite project, not use SmartWebResources™ (To open the language in common library folder)

Hope this helps.
Riendy



Hello Adam,

Did you use the latest Intersoft installer ? If not, I suggest you to use our latest installer.The problem is Intersoft ClientUI documentation might not be installed, because either version 3 or 4 is not removed during uninstallation process. 

To solve this problem, please follow the steps in Client UI knowledge base which the description name is Manually add and remove Intersoft ClientUI documentation to Microsoft Help Viewer, on this page.


Hope this helps.
Riendy

Hello Krzysztof,

I currently investigating your problem and need more time to provide a solution for you.
I'll be back for you on this thread soon. 


Regards.
Riendy 

Posted: July 1, 2011 2:52 AM

Hi Andrzej, 

I have added a work item to our development team as a feature request from you. Perhaps they think it is an useful feature, so could be implemented just like your expectation.


Regards.
Riendy



Hi Andrzej,

I meant, if you have to clear the cache, but it is not suggested because it same as remove some DevForce service. The batch update on this state should be enabled. Unfortunately in the fact, the batch update is disabled. Our development team has been known this issue and I ensure they will fix it as soon as possible.

Regarding to your scenario, I'm currently still investigating to provide a solution for you.


Regards.
Riendy



Posted: June 30, 2011 12:47 AM

Hello Andrzej,

The issue with disable batch update after you did editing, then navigate to another menu and get back to product menu has been known by our  development team.

Anyway, did you mean insert button to input a new data to grid ? Then we have to click save all changes button to save the changes to DB ?

For method using enter key in ComboBox or checkBox, I have to discuss with the development team before provide any answer for you. 


I'll be back for you soon.

Riendy




Hi Neil,

Thank you for your patience. 
To use an icon/image which have hyperlink in cell of WebGrid, first of all you have to set the column type to "HyperLink". Then input the codes that defines where hyperlink will be navigate and change the display text into icon/image tag in InitializeRow WebGrid event. For example, see snippet codes bellow :

For this example, the image would be existed on the second column.

  • For WebGridColumn (on clienSide): 
    <ISWebGrid:WebGridColumn Caption="CategoryName" DataMember="CategoryName" Name="CategoryName" Width="100px" ColumnType="HyperLink"
  • On ServerSide:
     protected void WebGrid1_InitializeRow(object sender, ISNet.WebUI.WebGrid.RowEventArgs e)
        {
            // To change a cell type into image.
            // Note that e.Row.Cells[0].Text is ColumnID.
            // Note that e.Row.Cells[1].Text is name of the image.
            WebGrid1.RootTable.Columns[1].HyperlinkDisplayText = " <img alt='" + "?id=" + e.R        ow.Cells[0].Text + "' src='" + e.Row.Cells[1].Text + "'/>";
            
            //To set a hyperlink format string. You can chage e.Row.Cells[0].Text into appoin        tmentID based on your scenario.
            WebGrid1.RootTable.Columns[1].HyperlinkFormatString = "http://www.google.co.id/s         earch?" + e.Row.Cells[0].Text;
        }
    

    Hope this helps.

Hi Andrzej,

To implement navigation properties, it should operated just like another entities. But unfortunately, just like I said before, this is our missing scenario. 

Our development team has known this issue and will fix it soon. For now, You might use your own solution that use ExecuteValidateRow event.

I will let you know the updates.


Regards.
Riendy

Posted: June 28, 2011 5:19 AM

Hello Maged,


Yes, you're right Maged. We have several ways to get the row object. some of this several options is using ToRowObject  and GetRowByKeyValue, but if we compare both of them, ToRowObject method more useful to get the row object than GetRowByKeyValue method, just like your experiment.


Regards.
Riendy

All times are GMT -5. The time now is 10:40 AM.
Previous Next