delianenchev

Results 1 comments of delianenchev

I had same issue and fixed with this solution. 1. Create own rending engine with [BootstrapRenderingEngine.cs ](https://github.com/joeharrison714/MVCGrid.Net/blob/master/MVCGrid/Rendering/BootstrapRenderingEngine.cs) 2. Replace `sbHtml.Append(col.HeaderText)` with `sbHtml.Append(rm.GetString(col.HeaderText));`. Create resource manager `ResourceManager rm = new ResourceManager(typeof(Resource));`...