'How do I override a media query in Recurly?
By default, Recurly adds this media query to the credit card field.
@media (max-width: 320px)
<style>
.recurly-hosted-field-isolate .recurly-hosted-field-icon-container, .recurly-hosted-field-isolate .recurly-hosted-field-input-cvv {
flex: 0.00001;
min-width: 0;
padding: 0;
}
I need to somehow change that max-width value. Is there anything I can pass into the recurly.configure method that will allow me to do that? Or any other way I can get control of that value?
Solution 1:[1]
I changed the "BSExps.EndEdit" to:
Me.DataGridView1.CommitEdit(DataGridViewDataErrorContexts.CurrentCellChange)
This seems to have solved the problem, now any change to the DGV is saved when the user moves to another record and then moves back.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Larry Stinson |
