This is a migrated thread and some comments may be shown as answers.

Table wizard, buttons below window size

2 Answers 42 Views
Editor
This is a migrated thread and some comments may be shown as answers.
TAD RHODES
Top achievements
Rank 1
TAD RHODES asked on 14 Jul 2010, 10:20 PM
Hi,

Not sure if this is a bug or not, but when you open the table wizard and select either the Table Properties or Cell Properties it pushes the "Okay" and "Cancel" buttons below the bottom border of the window.

Thank you,
Tad

2 Answers, 1 is accepted

Sort by
0
Accepted
Bozhidar
Telerik team
answered on 15 Jul 2010, 04:27 PM
Hi Tad,

Thank you for reporting this problem.

This is a known problem and it will be fixed in the next official SP1 release.
Currently, you can fix it yourself by editing the external dialog of RadEditor. By default, all RadEditor dialogs are embedded as resource files in the Telerik.Web.UI.dll file, which makes their customization harder. In order to provide an easy way to modify the editor's dialogs, the RadControls installation now comes with an extra folder named EditorDialogs which contains the dialogs' ascx files. You can configure RadEditor to use the external dialog files by copying the EditorDialogs folder to the root of the web application and setting the ExternalDialogsPath property to point to it. You could find more information at: ExternalDialogsPath Property in our help center.

You should find the following files: TableProperties.ascx, CellProperties.ascx. They are placed in /Editor/DialogControls.

In TableProperties.ascx you should find following code - line 315:

</script>
 
<table cellpadding="0" cellspacing="0">

Remove the space between, </script> and <table> and save it.

Now it should looks:

</script>
<table cellpadding="0" cellspacing="0">

In CellProperties.ascx you should find following code - line 362:

</script>
 
<style type="text/css">

Remove the space between, </script> and <style> and save it.

Now it should looks:

</script>
<style type="text/css">

We found a bug in Visual Studio 2010,.NET 4.0, that the space between tags reflects the layout rendering.

Greetings,
Bojo
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
TAD RHODES
Top achievements
Rank 1
answered on 15 Jul 2010, 04:47 PM
Excellent, as always telerik support is great.
Tags
Editor
Asked by
TAD RHODES
Top achievements
Rank 1
Answers by
Bozhidar
Telerik team
TAD RHODES
Top achievements
Rank 1
Share this question
or