User Profile & Activity

Dev Ashish Member
Page
of 3

Hi Glenn,

Is there any way to achieve this in JavaScript?

Regards

Posted: October 9, 2014 10:17 AM

Hi Hans,

Sorry for delay in reply.

I raised a ticket on your developer network regarding this with work item ASPNET-121.

Regards,
Dev

 

Posted: August 19, 2014 6:26 AM
Hi,
I am getting the same issue after I added the DataLoadMode="PagedData" in ClientBindingSettings. 
Please below the changes to be made in the ClientBinding_WebService.aspx file to get the issue.

Regards

<LayoutSettings
                    PersistRowChecker="true"
                    AllowGrouping="Yes"
                    AllowSorting="Yes"
                    AllowColumnFreezing="Yes"
                    AllowContextMenu="true"
                    AllowColumnSizing="Yes"
                    AllowColumnMove="Yes" 
                    GroupByBoxVisible="true"
                    HideColumnsWhenGrouped="No"
                    AllowFilter="Yes"
                    AllowBatchUpdate="True"
                    AllowEdit="Yes"
                    AllowAddNew="No"
                    AllowDelete="No"
                    PagingLoadMode="Custom"
                    PagingMode="VirtualLoad"
                    PagingDataRetrievalMode="ReturnPartialRows"
                    VirtualPageSize="100"
                    VirtualLoadMode="LargeData"
                    AutoFilterSuggestion="True"
                    ShowFilterStatus="True"
                    AutoWidth="true">

<ClientBindingSettings
                    ItemTypeName="ProductsNeedingAllocations"
                    DataSourceType="WebService"
                    ServiceUrl="~/Services/SKUAllocationsHotlistService.asmx"
                    FetchDataOnPageLoad="true"
                    DataLoadMode="PagedData"
                    EnableGroupRowPaging="true"
                    GroupRowPageSize="100">
Posted: July 28, 2014 11:12 AM

Hi Martin,

I am facing the same issue.

This post is more than 3 years old may be there is some changes in the product to solve this issue.

Regards

Posted: April 2, 2014 8:21 AM

Any Update?

Posted: March 26, 2014 4:50 AM

Hi Yudi,

Thanks for your replay.

I would like to add that I am currently using IE10 the issue is coming in there also.

Regards,

Dev

Posted: March 25, 2014 10:28 AM

Hi Yusuf,

Here is the sample.

i have used one of the page from the samples provided by Intersoft from below project.

C:\Program Files (x86)\Intersoft Solutions\Intersoft Premier Studio 2013 R1\Samples\For ASP.NET\ISNet.WebUI.Samples\vb\WebGridSamples.sln

Please note that i have only changes in the code behind file that to only one line. Its the underline statement in the below code.  


Protected Sub WebGrid1_InitializeRow(ByVal sender As Object, ByVal e As ISNet.WebUI.WebGrid.RowEventArgs)
        If e.Row.Type = RowType.Record Then
            Dim deptCell As WebGridCell = e.Row.Cells.GetNamedItem("DepartmentID")
            deptCell.Image = "images/dept_" & deptCell.Value.ToString() & ".png"
            deptCell.CustomObjectAttributes = "height=16"
            deptCell.TooltipText = "###Tooltip###"
        End If
	End Sub

Regards,

Dev

Posted: March 25, 2014 9:18 AM

Hi Yusuf,

I am getting problem in WebGrid 8.0.7200.258 with TooltipTest for Grid cell. It is getting overritten by the default tooltip text set by the grid when the value exceeds the column width.

I am using HTML5 doctype with .NET 4.5.1 in Visual Studio 2013.

Regards,

Dev

Posted: March 13, 2014 5:40 AM

Hi Yudi,

Sorry for delay in reply.

I tried you code. It’s still not working according to requirement.

I have written a JavaScript function OnLoad event which is changing the grid table height dynamically to fix this problem.

var grid = ISGetObject(controlId);
var divRootTableEl = GetRootTableElement(controlId);
divRootTableEl.style.height = grid.parentElement.clientHeight – siblingHeight(grid)+ "px";

 Where siblingHeight() calculates the height of other elements under grid parent division.  

All times are GMT -5. The time now is 11:31 PM.
Previous Next