Hi,
In my Pivot table i want to set the width for each column of row Filed.
I set the column width like this.
<telerik:PivotGridRowField DataField="Maintype" Caption="" CellStyle-Width="60px" > </telerik:PivotGridRowField> <telerik:PivotGridRowField DataField="subtype" Caption="" CellStyle-Width="60px" > </telerik:PivotGridRowField> <telerik:PivotGridRowField DataField="Listtype" Caption="" CellStyle-Width="110px" > </telerik:PivotGridRowField>Hi,
I'm interested in changing the order of the columns at runt-time for columns created in design-view. I have tried in Grid_PreRender but it doesn't work
Also, is it possible mix dynamically created columns with columns created in design?
Thanks,
catalin

Hi Telerik team,
i strucked in getting result in rad grid footer. bcoz itemdatabound firing twice in vb.net, result is getting doubled.
Dim total As Integer
Protected Sub grdAddList_ItemDataBound(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridItemEventArgs) Handles grdAddList.ItemDataBound
Try
If TypeOf e.Item Is GridDataItem Then
Dim dataItem As GridDataItem = CType(e.Item, GridDataItem)
Dim fieldValue As Integer = Integer.Parse(dataItem("Amount").Text)
total = (total + fieldValue)
End If
If TypeOf e.Item Is GridFooterItem Then
Dim footerItem As GridFooterItem = CType(e.Item, GridFooterItem)
footerItem("Amount").Text = "Total: " + total.ToString()
End If
Catch ex As Exception
Dim strExpMsg As String
strExpMsg = className & "." & MethodBase.GetCurrentMethod().Name & "()" & "->" & ex.Message.ToString()
ExceptionHandler(strExpMsg, ex, Me.strUserName)
End Try
End Sub
Thanks,
Lokesh

<asp:ImageButton ID="Button" runat="server" ImageUrl="~/Resources/key.png" OnClick="Button_Click" />
Hi there;
Two questions:
1. I'm currently rendering a radar chart inside a DIV, which has text-align set to center. The chart continually renders on the left side of the DIV, though. Is there a trick I'm missing?
2. Some of the x axis labels are truncated. Is there a way to prevent this?
Thanks,
Jason
<div class="ChartContainer"><telerik:RadHtmlChart ID="radarRCM" runat="server" Width="400px" > <Legend> <Appearance Visible="false"></Appearance> </Legend> <PlotArea> <Series> <telerik:RadarLineSeries DataFieldY="Score" Name="RadarLineSeries1"> <LabelsAppearance Visible="false"></LabelsAppearance> </telerik:RadarLineSeries> </Series> <XAxis DataLabelsField="Discipline" > </XAxis> </PlotArea> <Zoom Enabled="False"></Zoom></telerik:RadHtmlChart></div>
Hi,
We use a scheduler in our site which by default loads all the appointments for everyone on that given day.
We have a separate drop down which has user names. When a username is selected from the list, schedule for that user is loaded in the scheduler.
When the scheduler is empty , it loads well.
In some cases where the calendar is full with appointments, when i select a user from the drop down, I get the error given below. I get this error before it goes to dropdown_selectedindexchange event. Does this have anything to do with the view state? What fix is needed to get it working ?
'System.Web.HttpUnhandledException' was thrown. --->
System.Web.HttpException: Maximum request length exceeded.
at
System.Web.HttpRequest.GetEntireRawContent()
at
System.Web.HttpRequest.FillInFormCollection()
at
System.Web.HttpRequest.get_Form()
at
System.Web.HttpRequest.get_HasForm()
at System.Web.UI.Page.GetCollectionBasedOnMethod(Boolean
dontReturnNull)
at
System.Web.UI.Page.DeterminePostBackMode()
at
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint,
Boolean includeStagesAfterAsyncPoint)
Thanks,
Ravi

Below is my code
@{Html.Telerik().Window()
.Name("SupportDetailCommentPopup")
.Title("Comment")
.Content(@<text>
<form>
<div class="popup-validation-summary" style="display: none;">
<ul class="popup-validation-message-list"></ul>
</div>
<textarea id="SupportDetailCommentText" maxlength="255" style="width: 280px; height:100px" class="t-input ignoreForUnsavedChanges"></textarea>
<ul class="editor-fields">
<li>
@Html.Label("Updated By")
<div id="SupportDetailCommentLastUpdatedByText"></div>
</li>
<li>
@Html.Label("Last Updated Date")
<div id="SupportDetailCommentLastUpdatedDateText"></div>
</li>
</ul>
<input type="button" value="Save" id="FundsAvailableForMonthPopUpSave" onclick="" class="t-button button-spacing" />
<input type="button" value="Cancel" onclick="" class="t-button button-spacing" />
</form>
</text>)
.Modal(true)
.Visible(false)
.Draggable(true)
.ClientEvents(e => e.OnOpen("SupportDetailCommentPopUpOpen"))
.Width(300);
}