Editable column name

So I know here in this question, there is clicking a button can edit the column. However, I think it would be better if the header itself is an editable textbox or something similar, so that user can directly edit by clicking on it. Is there a way to do so?


5 Replies 1 reply marked as answer

RK Revanth Krishnan Syncfusion Team November 11, 2021 03:47 PM UTC

Hi Desmond, 
 
Greetings from Syncfusion support. 
 
Currently, we are validating your query from our end, we will update you with further details on or before 15th Nov 2021. We appreciate your patience till then. 
 
Regards, 
Revanth 



DE desmond replied to Revanth Krishnan November 12, 2021 08:56 AM UTC

I end up using a textbox in a self-defined custom KanbanColumn Template, now I can edit the header, but still, i am finding a way which I can remove the textbox border, and have the textbox transparent.





IS Indrajith Srinivasan Syncfusion Team November 15, 2021 08:39 AM UTC

Hi Desmond, 
 
Good day to you, 
 
We have validated your reported query “But still, i am finding a way which I can remove the textbox border, and have the textbox transparent”. You can use the below CSS style to prevent the box-shadow being applied for the Textbox component. Use the below style from the application end. 
 
CSS styles: 
 
 
<style> 
    .e-kanban .e-header-row .e-header-cells .e-header-title .e-input-group.e-control-container.e-control-wrapper, 
    .e-kanban .e-header-row .e-header-cells .e-header-title .e-input-group.e-control-container.e-control-wrapper.e-input-focus { 
        box-shadow: unset; 
    } 
</style> 
 
 
Please let us know if the solution helps, 
 
Regards, 
Indrajith 


Marked as answer

DE desmond November 15, 2021 03:53 PM UTC

Thanks a lot for your codes, it is the code I need to use, that's a great code. Besides that, may I know where exactly can I find a list of CSS selectors (e.g.: e-control-wrapper,e-input-focus)? What I can see in the documentation page is just part of it. If I can see a page listing all CSS selectors, just like the Syncfusion API reference page, then that would be excellent.



IS Indrajith Srinivasan Syncfusion Team November 16, 2021 06:25 AM UTC

Hi Desmond, 
 
The suggested CSS selectors are for the customized Textbox element rendered inside the Kanban Component, over-riding the default Textbox styles.  
 
Thanks for your valuable suggestions. We already have a plan, for including the style customizations for the Textbox component in the Blazor documentation. 
 
Regards,
Indrajith
 


Loader.
Up arrow icon