User Profile & Activity

Hans Kristian Member
Page
of 69

Hello,

You could get the latest version of our control, by downloading from our website (http://www.intersoftpt.com/WebUIStudio) or from Intersoft Developer Network at http://dev2.intersoftpt.com/

At Intersoft Developer Network, first, you need to login using your credential. Next, please find 'My Components' section and the select the ‘Trial’ tab.

Hope this helps. Thank you.
Regards,
Hans.

Posted: June 18, 2012 10:53 PM

Hello,

I’m sorry for this misunderstanding.
You can still get all columns even if the column is hidden.
I made a sample that maybe similar with your scenario.
In my sample, I use WebButton to get all columns name and display it to TextBox.
Here’s the snippet code in OnClientClick client side event:

function WebButton1_OnClientClick(controlId, parameter) {
    var WebButton1 = ISGetObject(controlId);
    var WebGrid1 = ISGetObject("WebGrid1");
    var TextBox1 = document.getElementById("TextBox1");

    var columnLenght = WebGrid1.RootTable.Columns.length;

    for (var i = 0; i < columnLenght; i++) {
        var columnName = WebGrid1.RootTable.Columns[i].Name;
        var columnVisibility = WebGrid1.RootTable.Columns[i].Visible;
        TextBox1.value = TextBox1.value + "Column Name: " + columnName + ";";
        TextBox1.value = TextBox1.value + " Column Visibility: " + columnVisibility + "; \n";
    }
            
    return true;
}

I attached my sample as well.

Hope this helps. Thank you.

Regrads,
Hans.

Posted: June 18, 2012 12:19 AM

Hello,

To get the hidden column value, you could use “HiddenDataMember” column property of WebGrid.
I made a sample to get the hidden column value. In my sample, I use Northwind.mdb database and Shipper table.

I set visibility of Phone column to “False”.
In ShipperID column, I set HiddenDataMember property to “Phone”.

I use OnRowSelect client side event to get the hidden column value, then set the value to TextBox

Here’s the snippet code in OnRowSelect client side event:

function WebGrid1_OnRowSelect(controlId, tblName, rowIndex, rowEl) {
    var WebGrid1 = ISGetObject(controlId);
    var TextBox1 = document.getElementById("TextBox1");
    //get HiddenDataMember
    TextBox1.value = WebGrid1.GetSelectedObject().GetRowObject().GetCells().GetNamedItem("ShipperID").GetElement().attributes["Phone"].value;
    return true;
}

I attached the sample as well.

Hope this helps. Thank you

Regards,
Hans.

Posted: June 17, 2012 9:57 PM

Hello,

I’m sorry for the inconvenience.
Are you using SmartWebResource in your project?
If yes, please try to add “ISNet.WebUI.Resources.dll” assembly in your bin folder.
If no, please try to use SmartWebResource.

And let me know if the issue still persist or not.

Regards,
Hans.

Posted: June 13, 2012 10:53 PM

Hi,

I’m sorry, but I can’t ensure the date of the next release is going to be available.
Please bear with me while waiting for this upcoming June release.

Thank you for understanding.

Regards,
Hans.

Hi,

Yes. we are going to be released in this June.
I’ll let you know if there is any updates about this release.

Thank you for your understanding.

Regards,
Hans.

Posted: June 13, 2012 9:41 PM

Hi,

I apologize for any inconveniences this problem may have caused you.
I've incorrectly send a sample in my last post. Therefore, please find the correct sample attached in this post.

Thank you for understanding

Regards,
Hans.

Posted: June 12, 2012 10:32 PM

Hello,

I’m really sorry for the inconvenience.
But unfortunately, I have yet to get any update from our developer team about this issue.

However I’ll let you know if there is any update for this issue.

Thank you for your understanding.

Regards,
Hans.

Hello,

I’m really sorry for the inconvenience.
But unfortunately, I can’t ensure the exact time when the next release is going to be available.
And I couldn’t tell whether the issue will be fixed in the next release as well.

However I’ll let you know if there is any update for this issue.

Thank you for your understanding & patience.

Regards,
Hans.

Posted: June 12, 2012 10:02 PM

Hello,

 

I’m sorry for the inconvenience.

Please try to run my sample and let me know the result of my sample.

 

Thank you.

Regards,

Hans.

All times are GMT -5. The time now is 10:13 PM.
Previous Next