<td id="parameterEditorBranchID_ECell1" style="height: 1px;" unselectable="on"><div id="parameterEditorBranchID_valueEditorBranchID"> <select name="parameterEditorBranchID$valueEditorBranchID$ddl1" class="ParameterEditor" id="parameterEditorBranchID_valueEditorBranchID_ddl1"> <option selected="selected" value="TelerikReportingSelectAValueItemValue"><select a value></option> <option value="Croydon">Croydon</option> <option value="Dandenong">Dandenong</option> <option value="Epping">Epping</option> <option value="Geelong">Geelong</option> <option value="Hallam">Hallam</option> <option value="Hastings">Hastings</option> <option value="Laverton">Laverton</option> <option value="Mt Evelyn">Mt Evelyn</option> <option value="North Melbourne">North Melbourne</option> <option value="Oakleigh">Oakleigh</option> <option value="Phillip Island">Phillip Island</option> <option value="Rowville">Rowville</option> <option value="Taylors Lakes">Taylors Lakes</option> </select> </div><script type="text/javascript"> var parameterEditorBranchID_valueEditorBranchID = new SingleAvailableValuesEditor('parameterEditorBranchID_valueEditorBranchID_ddl1'); </script></td>
As you can see, the DisplayMember is listed for both the text and the value. I would have expected to see the fldBranchID in the option value.
Can you tell me if this is by design and how I can go about getting the fldBranchID from the client-side if not through this method?
Regards,
CH
Source Error: An unhandled exception was generated during the execution of the current web request.
Stack Trace: [SerializationException: Type 'Telerik.ReportViewer.WebForms.ServerReport' in Assembly 'Telerik.ReportViewer.WebForms, Version=1.0.0.0, Culture=neutral, PublicKeyToken=a9d7983dfcc261be' is not marked as serializable.]
dear team, i'm trying to filter table pragmatically, i use the below code and it is working only for equal to, how can i do the same for start with and contains operators because the below code not working for them. do i miss something switch (Operator) { case ("Contains"): objFilter.Operator = Telerik.Reporting.FilterOperator.Like; objFilter.Value = string.Format("%{0}%", FieldValue); break; case ("StartWith"): objFilter.Operator = Telerik.Reporting.FilterOperator.Like; objFilter.Value = string.Format("{0}%", FieldValue); break; case ("EqualTo"): objFilter.Operator = Telerik.Reporting.FilterOperator.Equal; objFilter.Value = string.Format("{0}", FieldValue); break; default: objFilter.Operator = Telerik.Reporting.FilterOperator.Equal; objFilter.Value = string.Format("{0}", FieldValue); break; }
Hi, I am new to Telerik Reporting. I used the Graph Wizard to create a clustered column graph and the labels are not aligning with the column clusters. When using a Stacked Column graph the labels would align with the columns and I did not have this problem.
Images is attached. I have obfuscated the label names for privacy purposes