I have an issue with ​radgrids on public pages on my site (pages I want search engines to spider) are showing the back/next image button instead of the new "Mobile" buttons.
See attached images. One is from a datagrid with SEOPaging turn on (Old Buttons) and one with SEOPaging turned off (New Buttons).
I've been an on/off web developer for 15 years so don't class myself as an expert. I've used NetAdvantage in the past (and suffered!) but now I'm running my own business, I've looked at lots of 3rd party controls and Telerik scores highly so here I am starting, almost, from scratch.
I'm quite aware of the zillions of browser compatibility problems with different browsers, CSS etc etc.
The new application I'm writing is bespoke and will only be used in a specific industry and therefore it is possible to require that they use a modern browser and build using the latest cleaner HTML and CSS. This will hopefully reduce the number of weird layout issues that plague web applications.
In order to "get this right" this time, I've been doing a lot of reading up on CSS layouts so I really do understand this key aspect to web application design. This has brought me to this CSS stylesheet:
http://necolas.github.io/normalize.css/
The idea is to get the browser into a much more consistent known state.
Is this going to cause any problems with UI for ASP.NET?
Kind of associated with that question is that will switching to box-sizing: border across all tags using * { box-sizing: border } cause layout problems in Telerik if it's assuming the normal width/height sizing model?
So may questions! It's a big mountain that I'm staring up ;-)
Cheers, Rob.
Hi there,
I have use
http://demos.telerik.com/aspnet-ajax/htmlchart/examples/databinding/bindtoarray/defaultcs.aspx
I have chart with year and
End now, I want to click circle on chart and it will show month in year.
For example:
year: 2010, 2011, 2013 and I click I shown 1,2,3,4,...12 in 2010 chart
I have attach file for example
Thanks
Team
I have an grid. It contains required filed validator, range validator etc. for validation.. I am display all validation message in Validation Summary on top of the page.
It working fine when i click on update button. showing error message, I want to update validation summary dynamically if user entered valid input. Is there a way for the Validation summary to update in a similar manner as the error messages next to the controls? I would rather not do a postback and call Page.Validate().
​All controls inside radgrid.
I've a RadComboBox which is filled by a webservice something like this
<telerik:RadComboBox CheckBoxes="true"
SelectionMode="Multiple" ShowCheckAll="true" ID="WorkStreamID" runat="server"
Height="100" Width="150" EmptyMessage="Select Team" EnableLoadOnDemand="true"
WebServiceSettings-UseHttpGet="true" >
<ClientItemTemplate>
<b>#= Text # </b>
</ClientItemTemplate>
<WebServiceSettings Method="GetWorkStream" Path="~/ProjectDropDownWebService.asmx" />
</telerik:RadComboBox>​
and I want to get selected values of this combo inside button submit event
foreach (RadComboBoxItem item in WorkStreamID.CheckedItems)
{
//It never gets in here it says no checked items
}​
I want to get checked items list but its not working.. I think my combo is filled from web service that's causing the problem may be.
Hi,
I am working on an ASP.NET project where I am required to validate the page count of a pdf/word document before uploading it.
Is there any way of accomplishing this CLIENT SIDE ?
Thanks!