Dear Telrrik,
I am trying to put custom skin for RadSpellCheck, even I gave enable embed skin false and uploaded the skin CSS file and image in the theme folder, I am not getting the applied skin properly. Please see the attachments for more information
pelase find the list of below images
http://www.hrdpower.com/downloads/spell/Spell%20Address%20List%20in%20Solution%20Explorer.JPG
http://www.hrdpower.com/downloads/spell/Spell%20Half%20Visible.JPG
http://www.hrdpower.com/downloads/spell/Spell%20link%20address%20has%20to%20be%20addressed%20in%20%20Master%20Page.JPG
http://www.hrdpower.com/downloads/Spell%20Source%20Code.JPG
Regards,
Vinod
When I upgrade a Telerik project that has the handlers defined inside a location tag it add duplicate entries. The ones inside the location remain the same and the handlers are added at the end of the web.config file along with a duplicate authentication tag.
Is a better solution to just place everything outside the location override or is there a way to disable updating the web.config file on upgrade? I have a lot of projects inside one solution file, so mass upgrading is preferred over individual upgrades.
Here is what I mean by location.
<location allowOverride="True|False" path="path" />
I had to give the WebResource.axd file it's own location per other documentation and placed the main content inside a location of ".". Some folders are setup for anonymous access, like css and javascript files, while other folders require windows authentication. I have projects nested under other projects, so I don't want a higher web.config file to have any influence on a lower one. It's an interesting setup, but it all works great other than trying to upgrade Telerik. It's easy enough to remove the duplicate entries, but it would be nice to not have to do that for each upgrade.
I can provide better examples later when I'm in front of a computer.
Hello,
I made a real-time chart which gets e.g. every 5 seconds data from the server and updates itself. My problem is that my XAxis has dates but I only want to show the date where a value is available. But if I select Type="Date" the XAxis shows one entry every second. But I only want an entry every 5 seconds. This i got managed by setting Type="Auto". But if I set this I'm no longer able to format my date values of the XAxis either with DataFormatString or with ClientTemplate.
I really hope you can help me with my problem.
Kind regards,
Felix
Hey together.
I work with advanced databinding using the NeedDataSource event and want to add some aggregations to the footer.
After setting the DataSource I do some changes/formatting to the data in the OnDataBound event.
In this case I iterate through the MasterTableView.AutoGeneratedColumns and want to add Aggregations to all decimal Columns:
if
(dataColumn.DataType ==
typeof
(
decimal
))
{
((GridNumericColumn)dataColumn).Aggregate = GridAggregateFunction.Sum;
((GridNumericColumn)dataColumn).FooterText =
string
.Empty;
((GridNumericColumn)dataColumn).FooterAggregateFormatString =
"{0}"
;
}
My problem is, that this only works after a Postback or Rebind but not on the first load. I press refresh or do some sorting on the table and the sum shows up in the footer.
But Rebinding in this event is not possible, so what can I do to see my aggregations on first load? Is there a better event than OnDataBound?
I am experiencing an odd behavior when I apply a paragraph style <P> to a text in a <Div> that contains a class. It's reproducible on all browsers.
To illustrate this, i will use the example below:
<
div
class
=
"remarks"
>
Unless the sender is illiterate, please ask the sender to write the RCM text him/herself in Dari or Pashtu. If possible, please provide a translation into English or French.<
br
/>
Information to provide<
br
/>
In the countryside we need to know the name of the province, the district, the area and the village / sub-village of the Sought Person.<
br
/>
Any other useful information should be mentioned, such as close by a mosque, school or well-known building. <
br
/>
<
br
/>
A precise map of the location (hand drawing) can be attached to the RCM.<
br
/>
<
br
/>
Please note: To facilitate distribution and to prevent misunderstanding due to transcription, spelling or pronunciation, please ask the sender to write both the sender's and addressee's details in Dari or Pashtu, using the attached form<
br />
ICRC and/or ARCS. Cases from abroad should be directed to ICRC Kabul.<
br
/>
<
br />
After the initial assessment and processing by the ICRC, Tracing Cases in Afghanistan are normally followed up through active fieldwork conducted by the ARCS. Most of the districts and provinces are inaccessible to ICRC staff for security reasons.<
br
/>
<
br
/>
Any information regarding a case will be communicated by ICRC-Kabul to the concerned National Society/ICRC Delegation who is in charge of submitting information to the Enquirer. In the case of sad news regarding the Sought Person, ICRC-Kabul will send an explanatory note that will allow a re-contact with the Enquirer and a transmission of news in the most appropriate way.
</
div
>
Here, the <div class="remarks"> is the container of all the Text.
If we apply a paragraph style <p> to the text with the bold style in Design mode, the <Div> will not be the container anymore, and we will have the HTML below:
<
div
class
=
"remarks"
>
Unless the sender is illiterate, please ask the sender to write the RCM text him/herself in Dari or Pashtu. If possible, please provide a translation into English or French.<
br
/>
Information to provide<
br
/>
In the countryside we need to know the name of the province, the district, the area and the village / sub-village of the Sought Person.<
br
/>
Any other useful information should be mentioned, such as close by a mosque, school or well-known building. <
br
/>
<
br
/>
A precise map of the location (hand drawing) can be attached to the RCM.<
br
/>
<
br
/>
</
div
>
<
p class
=
"remarks"
>
Please note: To facilitate distribution and to prevent misunderstanding due to transcription, spelling or pronunciation, please ask the sender to write both the sender's and addressee's details in Dari or Pashtu, using the attached form
<
br />
ICRC and/or ARCS. Cases from abroad should be directed to ICRC Kabul.<
br
/>
<
br
/>
</
p>
<
div
class
=
"remarks"
>After the initial assessment and processing by the ICRC, Tracing Cases in Afghanistan are normally followed up through active fieldwork conducted by the ARCS. Most of the districts and provinces are inaccessible to ICRC staff for security reasons.<
br
/>
<
br
/>
Any information regarding a case will be communicated by ICRC-Kabul to the concerned National Society/ICRC Delegation who is in charge of submitting information to the Enquirer. In the case of sad news regarding the Sought Person, ICRC-Kabul will send an explanatory note that will allow a re-contact with the Enquirer and a transmission of news in the most appropriate way.
</
div
>
So if the div container has a style with a border radius,padding, margin and background color, this styles will be applied separately on the paragraph, so the result will be messy.
i did the test on the online telerik demo, and the case is reproducible.
Regards,
I have one wizard using a custom template css. Then in the last step of that wizard I have another wizard control set to use a different template. The issue I'm having is the styles for the main wizard are overwriting the sub wizard because by default they both use the same css class names.
Is there a way I could get the sub wizard to use different css class names or atleast use the version of the css classes that are under the template class I want for the sub wizard?