unsetCssThirdParty
unsetCssThirdParty(void)
The unsetCssThirdParty
function is used to remove any third-party CSS calls that might be affecting the styling of
your application. This can include external libraries such as datepicker or other custom CSS components.
By invoking this function, you can effectively detach third-party styling from your application, giving you more control over its appearance and preventing potential conflicts.
The function does not require any parameters. For example:
$crud->unsetCssThirdParty();
This will unset any third-party CSS calls that might be affecting the styling.
Example
Here's an example of how you might use the unsetCssThirdParty
function:
$crud->setTable('orders');
$crud->setSubject('Order', 'Orders');
$crud->columns(['orderNumber', 'orderDate', 'status', 'totalAmount']);
$crud->unsetCssThirdParty();
$output = $crud->render();